@charset "UTF-8";


/*한글 범위:  U+AC00-D7A3*/
/*호환용 한글(자음, 모음):3131~318F*/
/*영어 대문자 범위 :  U+0041-005A*/
/*영어 소문자 범위 :   U+0061-007A*/
/*숫자 범위 : U+0030-0039*/
/*특수 문자: U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E*/

/* CSS Document */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    vertical-align:baseline;
    background:transparent;
    /*font-weight:normal;*/
}
* {
    box-sizing: border-box;
    margin: 0;
}

body {
    line-height:1.5 !important;
    min-height: 1000px;
    font-size: 14px;
    font-family: 'Pretendard',-apple-system, "Apple SD Gothic Neo" , BlinkMacSystemFont,"Malgun Gothic",  sans-serif;
    letter-spacing: -0.025em;
}

     /*p, a, h1, h2, h3, h4, h5, h6 {*/
/*    transform: skew(-0.1deg);*/
/*}*/

/*-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica*/
/*Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji*/

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

ul,ol,li {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    vertical-align:baseline;
    background:transparent;
    color: #292929;
    text-decoration: none;
}

/* change colours to suit your needs */
ins {
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    /*border-collapse:collapse;*/
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
    font-family: 'Pretendard',sans-serif;
}

textarea{
    font-family: 'Pretendard',sans-serif;
}

input::placeholder{
    font-family: 'Pretendard',sans-serif;
}

input::placeholder::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-family: 'Pretendard',sans-serif;
}

input::placeholder::-moz-placeholder { /* Firefox 19+ */
    font-family: 'Pretendard',sans-serif;
}
input::placeholder:-ms-input-placeholder { /* IE 10+ */
    font-family: 'Pretendard',sans-serif;
}
input::placeholder:-moz-placeholder { /* Firefox 18- */
    font-family: 'Pretendard',sans-serif;
}

/* 버튼지우는 reset */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*공통 css pc 버전입니다.*/
.hide {
    display: none;
}

.middle > div{
    margin: 0 auto;
}

.floatLeft{
    float: left;
}

.floatRight{
    float: right;
}

.div_editable{
    border: 1px solid #dcdcdc;
    overflow-y: auto;
}

.btn22 {
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    background-color: #fff;
    color: #373737;
    border: 1px solid #dadada;
    cursor: pointer;
    box-sizing: border-box;
}


.horizonCrop{
    position: relative;
    overflow: hidden;
}
.horizonCrop img{
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100% !important;
    width: auto !important;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.verticalCrop{
    position: relative;
    overflow: hidden;
}
.verticalCrop img{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100% !important;
    height: auto !important;
}

.bold_700 {
    font-weight: 700;
}

/*.cmsBanner img, .cmsBanner iframe, .cmsBanner embed {*/
/*    max-width: none !important;*/
/*    max-height: none !important;*/
/*}*/

.width88 {
    width: 88px;
}


.line_clamp_2 {
    -webkit-line-clamp: 2;
}

.line_clamp_3 {
    -webkit-line-clamp: 3;
}

.line_clamp_4 {
    -webkit-line-clamp: 4;
}


/*----------------------common css From Event------------------------*/


/*btn size*/

button{
    font-family: 'Pretendard',sans-serif;
    border: 0;
}

.btnBig{
    display: inline-block;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}
.btnMiddle{
    display: inline-block;
    height: 36px;
    line-height: 35px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}
.btnSmall{
    display: inline-block;
    height: 27px;
    line-height: 27px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

/*btn size end*/

/*btn style*/
.btnMain1{
    background-color: #1891c3;
    border: 1px solid #1891c3;
    color: #fff;
}
.btnMain2{
    background-color: #f97141;
    border: 1px solid #f97141;
    color: #fff;
}
.btnMain3{
    background-color: #959595;
    border: 1px solid #959595;
    color: #fff;
}
.btnSub1{
    background-color: #f97141;
    border: 1px solid #f97141;
    color: #fff;
}
.btnSub2{
    background-color: #ddeff6;
    border: 1px solid #1891c3;
    color: #1891c3;
}
.btnSub3{
    background-color: #42499d;
    border: 1px solid #42499d;
    color: #fff;
}
.btnSub4{
    background-color: #eee;
    border: 1px solid #d0d0d0;
    color: #1891c3;
}
.btnSub5{
    background-color: #eee;
    border: 1px solid #d0d0d0;
    color: #333;
}
.btnSub6{
    background-color: #fff;
    border: 1px solid #959595;
    color: #333;
}
.btnSub7{
    background-color: #fff;
    border: 1px solid #959595;
    color: #959595;
}

/*btn style2*/


.tagSquare1{
    display: inline-block;
    height: 24px;
    padding: 15px;
    font-size: 12px;
    background-color: #fff;
    border:1px solid #42499d;
    color: #42499d;
}

.tagRound1{
    display: inline-block;
    background-color: #1891c3;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
}
.tagRound2{
    display: inline-block;
    background-color: #8bc8e1 ;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
}
.tagRound3{
    display: inline-block;
    background-color: #dddddd;
    color: #1891c3;
    padding: 2px 10px;
    border-radius: 20px;
}
.tagRound4{
    display: inline-block;
    background-color: #959595;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
}
.tagRound5{
    display: inline-block;
    background-color: #42499d;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
}
.tagRound6{
    display: inline-block;
    background-color: #c34444;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
}

.tagEventPayFree{
    display: inline-block;
    background-color: #55c891;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
}
.tagEventPay{
    display: inline-block;
    background-color: #f0a841;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
}

.width80{
    width: 80px;
}
.width88{
    width: 88px;
}
.width148{
    width: 148px;
}



.btn01{
    display: inline-block;
    height:22px;
    line-height:22px;
    font-size: 12px;
    font-weight: bold;
    color: #42499d;
    padding:0 15px;
    text-decoration: none;
    background-color: #ebebeb;
    margin-bottom:5px;
    text-align: center;
}
.btn01:hover{
    background-color: #e4e4e4;
}
.btn02{
    width:203px;
    height:42px;
    border:0;
    background-color: #57c16b;
    color: #fff;
    font-size:16px;
    font-weight: 500;
    margin-left: 209px;
    margin-bottom: 20px;
    cursor: pointer;
}
.btn02:hover{
    background-color: #51bb65;
}

.btn03{
    width: 195px;
    height: 45px;
    border: 0;
    background-color: #1891c3;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    float: right;
}

.btn03:hover{
    background-color: #198dbd;
}
.btn06{
    color: #9c9c9c;
    cursor: pointer;
}
.btn06{
    padding:15px 0;
    box-sizing: border-box;
    text-align: center;
}
.btn07{
    position: absolute;
    left:0;
    top:0;
    display: inline-block;
    width:173px;
    height:60px;
    line-height:60px;
    color: #fff;
    box-sizing:border-box;
    font-size: 20px;
    font-weight: bold;
    background-color: #27a2d6;
}
.btn07:hover{
    background-color: #2395c5;
    cursor: pointer;
}
.btn11{
    display: inline-block;
    padding:13px 50px;
    border:1px solid #dfdfdf;

}
.btn11 > a{
    text-decoration: none;
}
.btn12{
    background-color: #4195f5;
    cursor: pointer;
    text-align: center;
    padding: 15px 0;
    width:456px;
    margin: 0 auto;
    display: block;
    text-decoration: none;
    color: #fff;
}

.btn12 span{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}
.btn12:hover{
    background-color: #3d8eeb;
}
.btn13{
    background-color: #C12C0C;
    color: #fff;
    padding: 11px 0;
    text-align: center;
    display: block;
    cursor: pointer;
    padding:11px 0;
    text-align: center;
}

.btn14{
    border: 1px solid #1891c3;
    background-color: #1891c3;
    padding:7px 0;
    color: #fff;
    box-sizing: border-box;
    display: block;
    text-align: center;
}

.btn14:hover{
    background-color: #177ea9;

}

.btn15{
    border: 1px solid #dadada;
    background-color: #fff;
    padding:7px 0;
    color: #7e7e7e;
    box-sizing: border-box;
    display: block;
    text-align: center;
}

.btn15:hover{
    background-color: #f5f5f5;
    color: #373737;
}


.btn21{
    display:block;
    width: 100%;
    padding:10px 0;
    text-align:center;
    background-color:#1891c3;
    border:1px solid #1891c3;
    color:#fff;
    cursor: pointer;
    box-sizing: border-box;
}
.btn21:hover{
    background-color: #177ea9;
    color: #fff;
}

.btn23{
    display:block;
    width: 100%;
    border: 1px solid #dadada;
    background-color: #fff;
    padding: 10px 0;
    text-align:center;
    color: #7e7e7e;
    box-sizing: border-box;
}
.btn23:hover{
    background-color: #f5f5f5;
    color: #373737;
}
.btn24{
    display:block;
    width: 100%;
    border: 1px solid #dadada;
    background-color: #fff;
    padding: 10px 0;
    text-align:center;
    color: #7e7e7e;
    box-sizing: border-box;
}
.btn24:hover{
    background-color: #1891c3;
    color: #fff;
}
.btn25{
    display:inline-block;
    text-align:center;
    color: #42499d;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    background-color: #ebebeb;
    padding:5px 15px;
    margin-bottom:5px;
    box-sizing: border-box;
}
.btn25:hover{
    background-color: #e4e4e4;
}
.btn26{
    display:block;
    text-align:center;
    color: #1891c3;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #1891c3;
    background-color: #fff;
    padding:15px 0;
    box-sizing: border-box;
}
.btn27{
    display:block;
    text-align:center;
    font-size: 17px;
    font-weight: 400;
    padding:10px 0;
    box-sizing: border-box;
    color: #fff;
}
.btn28{
    display:block;
    text-align:center;
    font-size: 17px;
    font-weight: 400;
    padding:12px 0;
    box-sizing: border-box;
    background-color: #fc9e60;
    color: #fff;
    margin:0 auto;
    cursor: pointer;
}

.btn29{
    display:block;
    text-align:center;
    font-size: 14px;
    font-weight: 400;
    padding:6px 0;
    box-sizing: border-box;
    background-color: #dddddd;
    color: #727272;
    cursor: pointer;
}
.btn30{
    display:block;
    text-align:center;
    font-size: 38px;
    font-weight: 500;
    padding:25px 0;
    box-sizing: border-box;
    background-color: #78c3a3;
    color: #fff;
    cursor: pointer;
}
.btn31{
    display:block;
    text-align:center;
    padding:8px 23px;
    box-sizing: border-box;
    background-color: #aaaaaa;
    border:1px solid #aaaaaa;
    color: #fff;
    /*border-radius: 7px;*/
    font-weight: 300;
    cursor: pointer;
}
.btn32{
    display:block;
    text-align:center;
    font-weight: 500;
    padding:20px 0;
    box-sizing: border-box;
    background-color: #fc9e60;
    border:1px solid #fc9e60;
    color: #fff;
    cursor: pointer;
}

.clearfix:after {
    content: '';
    display: block;
    clear: both;
}

.width100px {
    width: 100px;
}

/*common Category*/
ul.commonCategoryWrap{
    height: 27px;
    border-bottom: 2px solid #9c9c9c;
    overflow: hidden;
}
.commonCategoryWrap > li{
    float: left;
    font-size:16px;
}

.commonCategroyGray{
    color: #7d7d7d;
}
.commonCategroyGray a{
    text-decoration: none;
    color: #7d7d7d;;
}
.commonCategroyGray a:visited{
    color: #7d7d7d;
}
.commonCategroyBar{
    margin: 0 8px;
    color: #7d7d7d;
    margin-top: -2px;
}
.commonCategoryBlue{
    color: #354992;
}
.commonCategoryBlue a:visited{
    color: #354992;
}
.commonCategoryBlue a{
    text-decoration: none;
    color: #354992;
}
/*common Category end*/



.newsletter5{
    width: 100%;
}

.mgAuto{
    margin:0 auto;
}

.pdUp{padding-bottom: 15px}

.g-recaptcha>div{
    margin:0 auto;
}

.top{
    position: fixed;
    right: 20px;
    bottom: 8px;
    cursor: pointer;
}

.margin_top_0{
    margin-top: 0 !important;
}





/*새로 추가된 라이브러리*/
.break-all{
    word-break: break-all;
}

.marginR0{
    margin-right:0 !important;
}

.marginL15{
    margin-left:15px;
}

.marginT0{
    margin-top:0 !important;
}

.marginT5{
    margin-top:5px;
}

.marginT15 {
    margin-top: 15px;
}

.marginT30{
    margin-top: 30px;
}

.paddingT15{
    padding-top: 15px;
}

.marginB8{
    margin-bottom:8px;
}
.marginB10{
    margin-bottom:10px;
}

.marginB15{
    margin-bottom:15px;
}

.marginB20{
    margin-bottom:20px;
}

.paddingB15{
    padding-bottom:15px;
}

.width250 {
    width: 250px;
}
.width555{
    width:555px;
}

.width570{
    width:570px;
}

.paddingR15{
    padding-right:15px;
}

.width120{
    width: 120px;
}

.width150{
    width: 150px !important;
}

.cursor{
    cursor: pointer;
}

.border_item{
    border: 1px solid #EDEDED;
    border-radius: 10px;
    background: #fff;
}

.shadow_item{
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.20);
    border-radius: 10px;
    background: #fff;
}

.margin_B_4px{
    margin-bottom: 4px;
}


/*하늘색 버튼*/
.new_btn01 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    letter-spacing: -0.35px;

    background: #E6F1FF;
    color: #4294FF;
    padding: 6px 12px;
}

/*파란색 버튼*/
.new_btn02{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    letter-spacing: -0.35px;

    background: #4294FF;
    color: #fff;
    padding: 6px 12px;

}

/*회색 버튼*/
.new_btn03{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    letter-spacing: -0.35px;

    background: #F1F1F5;
    color: #767676;
    padding: 10px 12px;
}

/*진회색 버튼 - 선택불가 버튼*/
.new_btn04{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    /*cursor: pointer;*/
    letter-spacing: -0.35px;

    background: #bbbbbb;
    color: #fff;
    padding: 10px 12px;
}

/*border파란색 버튼*/
.new_btn05{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    letter-spacing: -0.35px;

    background: #fff;
    color: #4294FF;
    border: 1px solid #4294FF;
    padding:9px 12px;
}

/*노란색 버튼*/
.new_btn06{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    letter-spacing: -0.35px;

    background: #FFB21A;
    color: #fff;
    padding: 10px 12px;
}

/*border 회색 버튼*/
.new_btn07{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    letter-spacing: -0.35px;

    border:1px solid #DBDBDB;
    color: #767676;
    padding: 0 12px;
}


/*글쓰기 버튼*/
.write_btn{
    display: flex;
    width: 86px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #4294FF;
    color: #4294FF;
    letter-spacing: -0.35px;
}

.write_btn img{
    margin-right: 4px;
}


.gradation_div {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;

    border: 1px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(150deg, rgba(102,204,255,1) 0%, rgba(102,102,255,1) 50%, rgba(204,102,255,1) 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}
.gradation_txt {
    background: linear-gradient(150deg, rgba(102,204,255,1) 0%, rgba(102,102,255,1) 50%, rgba(204,102,255,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 14px;
    padding: 6px 12px;
    font-weight: 500;
    letter-spacing: -0.35px;
}

.full_gradation_div {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;

    background: var(--gradient-mid-badge-gradient, linear-gradient(135deg, #80D4FF 16.67%, #8080FF 52.08%, #D480FF 87.5%));
    padding: 7px 12px;
}

.full_gradation_div p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.35px;
}



/*140px로 고정된 버튼*/
.new_btn_wid_140{
    width: 140px;
    height: 40px;
}

/*100퍼센트 너비 버튼*/
.new_btn_wid_100P{
    width: 100%;
    height: 32px;
}

/*높이별 버튼*/
.new_btn_hei_28{
    height: 28px;
    font-size: 13px;
    padding: 6px 8px;
}
.new_btn_hei_32{
    height: 32px;
}
.new_btn_hei_36{
    height: 36px;
}
.new_btn_hei_40{
    height: 40px;
}
.new_btn_hei_48{
    height: 48px;
    font-size: 16px;
}
.new_btn_wid_100P{
    width: 100%;
}

.fw_b{
    font-weight: bold;
}

/*공통태그*/

/*title*/
.new_title1{
    color: #111;
    font-weight: 700;
    font-size: 24px;
}
.new_title2{
    color: #111;
    font-weight: 700;
    font-size: 20px;
}
.new_title3{
    color: #111;
    font-weight: 700;
    font-size: 18px;
}
.new_title4{
    font-size: 17px;
    font-weight: bold;
}
.new_title5{
    font-size: 16px;
    font-weight: bold;
}
.new_title6{
    font-size: 15px;
    font-weight: bold;
}

.title_wrap_space_between{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*본문*/
.body1{
    color: #111111;
    font-size: 16px;
}
.body2{
    color: #111111;
    font-size: 15px;
}
.body3{
    color: #111111;
    font-size: 14px;
}
.body4{
    color: #111111;
    font-size: 13px;
}
.body5{
    color: #111111;
    font-size: 12px;
}

.new_txt_blue{
    color: #4294FF;
}

.new_txt_gray{
    color: #767676;
}

.new_txt_gray2{
    color: #999;
}

.error_red{
    color: #F65252;
    font-size: 12px;
    letter-spacing: -0.3px;
    padding: 0 4px;
}

.new_marginB8{
    margin-bottom: 8px;
}

.new_marginB4{
    margin-bottom: 4px;
}

.new_marginR12{
    margin-right: 12px;
}

.underline_txt{
    text-decoration : underline;
    text-underline-position : under;
}


/*color txt*/

.blue_txt{
    color: #4294FF;
}
.gray_txt9{
    color: #767676;
}
.gray_txt8{
    color: #999999;
}
.green_txt7{
    color: #29CC96;
}

/*font size*/
.font16{
    font-size: 16px;
}

/*카태고리*/
.board_category{
    font-weight: 500;
    font-size: 12px;
    border-radius: 20px;
    padding: 3px 8px;
    display: inline-block;
    text-align: center;
    width: fit-content;
    height: 24px;
}

.board_category_0{
    color: #999999;
    background: #EDEDED;
}

.board_category_1{
    color: #FF9900;
    background: #FFF0D4 ;
}

.board_category_2{
    color: #8256FF;
    background: #EDE7FF;
}

.board_category_3{
    color: #29B67B;
    background: #E4F9F0 ;
}

.board_category_4{
    color: #00BCE5;
    background: #E4FAFF;
}

.board_category_5{
    color: #EA48E3;
    background: #FFE3FE;
}

.board_category_6{
    color: #2F80EB;
    background: #E6ECFF ;
}

.board_category_7{
    color: #FF7511;
    background: #FFF3DB ;
}

.board_category_8{
    color: #999;
    background: #EDEDED ;
}

.board_line_category_3{
    color: #24B283;
    border: 1px solid #A1E5CF;
}
.board_line_category_7{
    color: #FF7511;
    border: 1px solid #FFCA99;
}

.board_new_category{
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: -0.015em;
}

.board_new_category_0{
    color: #767676;
}

.board_new_category_1{
    color: #8256FF;
}

.board_new_category_2{
    color: #29CC96;
}

/*질문게시판*/
.board_new_category_3{
    color: #4294FF;
}

.board_new_category_4{
    color: #00B6DE;
}

/*차트분석*/
.board_new_category_5{
    color: #00B6DE;
}

/*손익인증*/
.board_new_category_6{
    color: #EA48E3;
}



.search_category{
    display: inline-block;
    border: 1px solid #EDEDED;
    color: #767676;
    padding: 6px 12px;
    border-radius: 4px;
    width: 76px;
    height: 40px;
    margin-right: 6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline:none;
    background: url(/assets/images/tokenpost_new/forum/arrow.svg) 90% 50% no-repeat;
    background-size: 13px;
    font-size: 14px;
}

.search_category option{
    border: 1px solid #DBDBDB;
    color: #767676;
}

.search_category option:hover{
    background-color:#F7F7FA ;
}




.common_table_v1{
    border-radius: 10px;
    border: 2px solid #4294FF ;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.common_table_v1 th{
    background: #4294FF;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.35px;
    padding: 10px;
    vertical-align: middle;
}

.common_table_v1 td{
    color: #767676;
    letter-spacing: -0.35px;
    padding: 20px 10px;
    border-bottom: 1px solid #EDEDED;
    border-right: 1px solid #EDEDED;
    vertical-align: middle;
}

.common_table_v1 td:last-child{
    border-right: 0;
}


.common_table_gray{
    width: 100%;
    text-align: center;
}

.common_table_gray th{
    color: #767676;
    font-weight: 500;
    letter-spacing: -0.35px;
    padding: 8px 10px;
    border-bottom: 1px solid #EDEDED;
    border-right:1px solid #EDEDED;
    background: #FAFAFB;
    vertical-align: middle;
}
.common_table_gray th:last-child{
    border-right:0;
}


.common_table_gray td{
    color: #767676;
    letter-spacing: -0.35px;
    padding: 8px 10px;
    border-bottom: 1px solid #EDEDED;
    border-right:1px solid #EDEDED;
    vertical-align: middle;
}

.common_table_gray td:last-child{
    border-right:0;
}

.table {
    overflow: hidden;
}

/*숫자 화살표 없애기*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*체크박스*/
.new_checkbox{
    position: relative;
}
.new_checkbox input[type="checkbox"] {
    display: none;
}

.new_checkbox input[type="checkbox"] + label span {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    margin-bottom: 2px;
    background: url('/assets/images/tokenpost_new/common_new/checkbox_off.svg') left top no-repeat;
}

.new_checkbox input[type="checkbox"]:checked + label span {
    background: url('/assets/images/tokenpost_new/common_new/checkbox_on.svg') left top no-repeat;
    border: 0;
    width: 16px;
    height: 16px;
    background-size: cover;
}

.new_checkbox label,
.new_checkbox input[type="checkbox"]{
    cursor: pointer;
}

.new_checkbox label{
    color: #767676;
    border: 0;
    font-size: 14px;
    letter-spacing: -0.35px;
}

/*안내사항 회색배경 */
.gray_guidance,
.guide_wrap{
    background: #FAFAFB !important;
    padding: 28px;
    border-radius: 10px;
}


.gray_guidance li,
.guide_wrap li{
    position: relative;
    margin-bottom: 4px;
    color: #767676;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: -0.325px;
    padding-left: 10px;
}

.gray_guidance li::after,
.guide_wrap li::after{
    position: absolute;
    content: '';
    width: 2px;
    height: 2px;
    background: #767676;
    border-radius: 25px;
    left: 0;
    top: 8px;
}

.gray_guidance p,
.guide_wrap p{
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.325px;
    margin-bottom: 8px;
    color: #767676;
}

/*컨탠츠 스크롤 있을때 모달 -> 수정 필요*/
.modal_wrap.modal_content_scroll{
    padding: 0;
}

.modal_wrap.modal_content_scroll .modal_title_wrap{
    padding: 18px 24px;
    border-bottom: 1px solid #EDEDED;
}

.modal_wrap.modal_content_scroll .modal_content_scroll{
    padding: 4px;
}

.modal_wrap.modal_content_scroll .modal_content{
    padding: 20px;
}

.modal_wrap.modal_content_scroll .modal_bottom{
    padding: 20px 24px;
    text-align: center;
}


/*컨탠츠 스크롤 있을때 모달   */
.modal_wrap.modal_scroll_wrap{
    padding: 0;
}

.modal_wrap.modal_scroll_wrap .modal_title_wrap{
    padding: 20px;
    border-bottom: 1px solid #EDEDED;
}

.modal_wrap.modal_scroll_wrap .modal_content_scroll{
    padding: 4px;
    /*height: 100%;*/
}

.modal_wrap.modal_scroll_wrap .modal_content{
    padding: 20px;
    overflow-y: auto;

}

.modal_wrap.modal_scroll_wrap .modal_bottom{
    padding: 20px 24px;
    text-align: center;
}



/* 아래의 모든 코드는 영역::코드로 사용 */
.common_scroll::-webkit-scrollbar {
    width: 6px;  /* 스크롤바의 너비 */
}
.common_scroll::-webkit-scrollbar-thumb {
    height: 30%; /* 스크롤바의 길이 */
    background: #DBDBDB; /* 스크롤바의 색상 */
    border-radius: 10px;
}
.common_scroll::-webkit-scrollbar-track {
    background: #F7F7FA;  /*스크롤바 뒷 배경 색상*/
}

/*-----------*/

/* 공통 form*/
/*자동완성 할때 배경색 변하는거 방지*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 9999s ease-out;
    -webkit-box-shadow: none !important;
    -webkit-text-fill-color: #111 !important;
}

.common_input_txt input[type="text"] {
    height: 40px;
    width: 100%;
    border: 1px solid #EDEDED;
    border-radius: 4px;
    color: #111;
    font-size: 14px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
}

.common_input_txt input[type="text"]::placeholder{
    color: #999;
}
.common_input{
    width:100%;
    height: 40px;
    border-radius: 4px;
    border: 1px solid #EDEDED;
    background: #FFF;
    box-sizing: border-box;
    padding: 8px 12px;
}

.common_input:focus{
    border: 1px solid #4294FF;
}

.common_input_wrap{
    position: relative;
    width: 100%;
}

.common_input:disabled{
    background: #F7F7F7;
    color: #999;
}

.common_input:disabled::placeholder{
    color: #999;
}


.common_input_txt .error_txt{
    color: #F65252;
    font-size: 12px;
    letter-spacing: -0.3px;
    margin-top: 4px;
}

.error_txt{
    color: #F65252;
    font-size: 12px;
    letter-spacing: -0.3px;
    margin-top: 4px;
}

.error_txt .underline_txt{
    color: #111;
}

.error_input{
    border: 1px solid #F65252;
    border-radius: 4px;
}

.error_txt_item{
    min-height: 18px;
}



/*검색 버튼이 있는 input-text*/
.common_input_txt._search_btn{
    position: relative;
    display: inline-block;;
}

.common_input_txt._search_btn .search_input_btn{
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
    z-index: 1;
}

.common_input_txt._search_btn .search_input_btn button{
    width: 16px;
    height: 16px;
    padding: 0;
    margin: 0;
    box-sizing: content-box;
    border: 0;
    background: none;
    cursor: pointer;
}


.area_custom_select {
    position: relative;
    display: inline-block;
    width:100%;
    height: 40px;
}

.custom_select_text{
    color: #111111;
    cursor: pointer;
}

.custom_select_text em{
    color: #999999;
    font-style: normal;
}

.custom_select_text em.from_disabled {
    position: absolute;
    left: 0;
    top: 0;
    cursor: not-allowed;
    width: 100%;
    height: 40px;
    padding: 8px 12px ;
    border-radius: 4px;
    background: #fafafa url(/assets/images/tokenpost_new/forum/arrow.svg) 95% 52% no-repeat;
}

.custom_select {
    position: relative;
    display: inline-flex;
    align-items: center;
    border: 1px solid #EDEDED;
    color: #767676;
    padding: 8px 12px;
    border-radius: 4px;
    width: 100%;
    height: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*background: url(/assets/images/tokenpost_new/forum/arrow.svg) 95% 52% no-repeat;*/
    /*background-size: 13px;*/
    outline: none ;
    cursor: pointer;
}

.rotate {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.select_origin {
    display: none;
}

.custom_select_arrow {
    /*transition: transform 0.2s;*/
    cursor: pointer;
    position: absolute;
    top: 12px;
    right: 10px;
}

.custom_select_list  {
    position: absolute;
    font-size: 18px;
    width: 300px;
    height: auto;
    overflow-y: auto;
    max-height: 250px;
    z-index: 15;
    background-color: #ffffff;
    text-align: left;
    margin-top: 5px;
    box-sizing: border-box;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.20);
    /*border-radius: 4px;*/

}

.custom_select_option {
    height: 44px;
    padding: 12px 16px;
    cursor: pointer;
    box-sizing: border-box;
    color: #767676;
    font-size: 14px;
}

.custom_select_option:hover {
    background-color: #F7F7FA;
    box-sizing: border-box;
}
/*-----------------------------*/



/*버튼 두개씩 있을떄*/
.twin_btn_wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.twin_btn_wrap .new_btn_wid_100P:first-child{
    margin-right: 12px;
}

.common_textarea_wrap{
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #EDEDED;
    overflow: hidden;
}

.common_textarea{
    background: #FFF;
    resize: none;
    width: 100%;
    outline: none ;
    border: 0;
}

/*복사 아이콘, 택스트 */
.copy_item{
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: #999;
    margin-left: 8px;
    vertical-align: middle;
    cursor: pointer;
}


.copy_item button{
    color: #999;
    font-size: 13px;
    background: none;
    padding: 0;
    cursor: pointer;
}


.copy_item img{
    margin-right: 4px;
}


/* 탭 */

.common_tab_list{
    padding: 0px;
    list-style: none;
    background: #FFFFFF;
    border-bottom: 1px solid #EDEDED;
    margin: 24px 0;
}

.common_tab_list .common_tab_item {
    display: inline-block;
    cursor: pointer;
}

.common_tab_list .common_tab_item .tab_link{
    display: block;
    color: #767676;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 8px;
    text-align: center ;
    letter-spacing: -0.4px;
    width: max-content;
}

.common_tab_list .common_tab_item.current .tab_link{
    color: #4294FF;
    font-weight: 700;
    border-bottom: 2px solid #4294FF;
}

.common_tab_content_wrap .tab_content {
    display: none;
}

.common_tab_content_wrap .tab_content.current {
    display: inherit;
}


/*좋아요 싫어요 버튼 */
.common_vote_list{
    display: flex;
    align-items: center;
    gap: 8px;
}

.common_vote_list .vote_item{
    min-width: 60px;
    height: 32px;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #EDEDED;
    background: #FFF;
    padding: 5px 14px 6px 35px;
}

.common_vote_list .vote_item.comment_vote_up,
.common_vote_list .vote_item.comment_vote_down {
    cursor: pointer;
}

.common_vote_list .vote_item span{
    color: #999;
    font-size: 13px;
}

.common_vote_list .up_vote{
    background: #fff url(/assets/images/tokenpost_new/common_new/vote_up.svg) 16px 8px no-repeat;
}

.common_vote_list .down_vote{
    background: #fff url(/assets/images/tokenpost_new/common_new/vote_down.svg) 16px 10px no-repeat;
}

.common_vote_list .up_vote.check{
    background: #fff url(/assets/images/tokenpost_new/common_new/vote_up_on.svg) 16px 8px no-repeat;
}

.common_vote_list .down_vote.check{
    background: #fff url(/assets/images/tokenpost_new/common_new/vote_down_on.svg) 16px 10px no-repeat;
}

.common_vote_list .up_vote.check span{
    color: #4294FF;
}

.common_vote_list .down_vote.check span{
    color: #F65252;
}


.common_edit_delete_item {
    position: relative;
    width: 16px;
    height: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common_edit_delete_list{
    display: none;
    position: absolute;
    width: 70px;
    border: 1px solid #DBDBDB;
    border-radius: 4px;
    right: 7px;
    top: 25px;
    text-align: center;
    background: #fff;
}

.common_edit_delete_list span{
    font-weight: 400;
    font-size: 14px;
    color: #767676;
    padding: 7px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}

.common_edit_delete_list span:hover{
    background: #F7F7FA;
}

/**
    Menu
 */
.common_menu_1 {
    position: relative;
    width: 16px;
    height: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common_menu_1 > img{
    padding: 0 5px;
}

.common_menu_1 > .menu_list{
    display: none;
    position: absolute;
    width: 70px;
    border: 1px solid #DBDBDB;
    border-radius: 4px;
    right: 7px;
    top: 25px;
    text-align: center;
    background: #fff;
}

.common_menu_1 > .menu_list > .menu_list_item{
    font-weight: 400;
    font-size: 14px;
    color: #767676;
    padding: 7px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}

.common_menu_1 > .menu_list > .menu_list_item:hover{
    background: #F7F7FA;
}



/* up down */

.common_percent_wrap .num_up{
    color: #F65252;
}

.common_percent_wrap .num_down{
    color: #2F80EB;
}

.common_percent_wrap .num_equal{
    color: #767676;
}

.common_percent_wrap .coin_num{
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.common_percent_up_down{
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 5px;
    gap: 4px;
}

.common_percent_up_down p{
    font-size: 14px;
    letter-spacing: -0.35px;
}

.common_percent_up_down.item_down{
    background: #F0F6FF;
}

.common_percent_up_down.item_up{
    background:#FFF2F2;
}

.common_percent_up_down.item_equal{
    background:#F1F1F1;
}